-
Notifications
You must be signed in to change notification settings - Fork 2.3k
go/packages: add GOROOT env to avoid TestTarget failure in OpenBSD #552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Fixing golang/go#70891. |
00d5a1c to
4f9dda5
Compare
|
This PR (HEAD: 4f9dda5) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
4f9dda5 to
9bb9bc1
Compare
|
This PR (HEAD: 9bb9bc1) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
9bb9bc1 to
a190875
Compare
|
This PR (HEAD: a190875) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
a190875 to
9807469
Compare
|
This PR (HEAD: 9807469) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
9807469 to
747c2a0
Compare
|
This PR (HEAD: 747c2a0) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
|
Message from 蔺林: Patch Set 5: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Michael Matloob: Patch Set 6: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
747c2a0 to
33df413
Compare
|
This PR (HEAD: 33df413) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
|
Message from 蔺林: Patch Set 7: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Michael Matloob: Patch Set 7: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
When running tests in OpenBSD if 'go' is built with -trimpath, the TestTarget will always fail. Because when invoked without proper environments, 'go' itself fails to find the GOROOT path. Fixes golang/go#70891
33df413 to
6e1311b
Compare
|
This PR (HEAD: 6e1311b) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/637961. Important tips:
|
|
Message from 蔺林: Patch Set 8: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Michael Matloob: Patch Set 8: Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Michael Matloob: Patch Set 8: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Go LUCI: Patch Set 8: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2025-01-03T16:04:14Z","revision":"4df4f6fdb6ccb4d76f7f2b4a86da34d827e7bca8"} Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Michael Matloob: Patch Set 8: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Go LUCI: Patch Set 8: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Go LUCI: Patch Set 8: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
|
Message from Dmitri Shuralyov: Patch Set 8: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/637961. |
When running tests in OpenBSD if 'go' is built with -trimpath, the TestTarget will always fail. Because when invoked without proper environments, 'go' itself fails to find the GOROOT path. Fixes golang/go#70891 Change-Id: I829b77686ae24d869653365f3e44e457c76b46bb GitHub-Last-Rev: 6e1311b GitHub-Pull-Request: #552 Reviewed-on: https://go-review.googlesource.com/c/tools/+/637961 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Michael Matloob <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
|
This PR is being closed because golang.org/cl/637961 has been merged. |
When running tests in OpenBSD if 'go' is built with -trimpath,
the TestTarget will always fail. Because when invoked without
proper environments, 'go' itself fails to find the GOROOT path.
Fixes golang/go#70891